home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\INCLUDE\FUNNY.H < prev    next >
C/C++ Source or Header  |  1994-12-28  |  779b  |  36 lines

  1. /*
  2.  * funny.h: header for funny.c
  3.  *
  4.  * written by michael sandrof
  5.  *
  6.  * copyright(c) 1990 
  7.  *
  8.  * see the copyright file, or do a help ircii copyright 
  9.  *
  10.  * @(#)$Id: funny.h,v 1.4 1994/07/02 02:38:10 mrg Stab $
  11.  */
  12.  
  13. #ifndef _FUNNY_H_
  14. #define _FUNNY_H_
  15.  
  16. #define FUNNY_PUBLIC 1
  17. #define FUNNY_PRIVATE 2
  18. #define FUNNY_TOPIC  4
  19. #define FUNNY_WIDE   8
  20. #define FUNNY_USERS  16
  21. #define FUNNY_NAME   32
  22.  
  23. extern    void    set_funny_flags();
  24. extern    void    funny_match();
  25. extern    void    reinstate_user_modes();
  26. extern    void    funny_set_ignore_channel();
  27. extern    void    funny_print_widelist();
  28. extern    void    funny_list();
  29. extern    void    funny_mode();
  30. extern    void    funny_namreply();
  31. extern    int    funny_is_ignore_channel();
  32. extern    void    update_user_mode();
  33. extern    void    funny_set_ignore_mode();
  34.  
  35. #endif /* _FUNNY_H_ */
  36.